![]() |
Learn the basics about HTML |
|
ContentMain Page |
BasicsA HTML file is a normal text file with plain text. To format text or insert images e.t.c you need to insert tags. Tags are enclosed in < >. Most of the tags have a start tag and an end tag eg <strong>Some Text</strong>.Every HTML File begins with the tag <HTML> and also ends with </HTML> Insite the HTML tag the HTML File is divided into two section. The HEAD section and the Body section. the HEAD section is right after the HTML start tag also with a start tag <HEAD> and a end tag </HEAD> The BODY section in right after the HEAD end tag. Example: <HTML> HTML start tag The HEAD tagInside the HEAD tag you Insert general information about the document such as the title or JavaScripts. The title is displayed in the browsers window title when you view the page. You should not place any text inside the HEAD section. Example: <HEAD> The BODY tagInside the BODY tag you enter the content of your HTML page such as text, links and images. |
|